home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
vbcc
/
machines
/
amiga68k
/
libsrc
/
stdio
/
fputs.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-07-10
|
214 b
|
12 lines
#include <stdio.h>
int fputs(const char *s,FILE *f)
/* muss fputs wirklich nur irgendeinen pos. Wert zurueckgeben? */
{
while(*s){
if(putc(*s,f)==EOF) return(EOF);
s++;
}
return(1);
}